home *** CD-ROM | disk | FTP | other *** search
/ START Magazine / START VOL 3 NO 7.st / KAMIKAZE.ARC / GRAPHICS.C < prev    next >
Encoding:
C/C++ Source or Header  |  1988-11-14  |  2.7 KB  |  173 lines

  1.  
  2. #include <osbind.h>
  3. #include <aline.h>
  4. #include "kamikaze.h"
  5.  
  6. #define REPLACE 1
  7. #define XOR    2
  8.  
  9.  
  10. char gemctable[16] = 
  11.     {
  12.     0, 2, 3, 6, 4, 7, 5, 8, 9, 0xa, 0xb, 0xe, 0xc, 0xf, 0xd, 1,
  13.     };
  14.  
  15.  
  16. WORD solid[] = {0xffff, 0xffff, 0xffff, 0xffff,
  17.          0xffff, 0xffff, 0xffff, 0xffff};
  18.  
  19. get_cmap(cmap)
  20. register WORD *cmap;
  21. {
  22. register int i;
  23.  
  24. for (i=0; i<16; i++)
  25.     *cmap++ = Setcolor(i, -1);
  26. }
  27.  
  28. flash_color(color)
  29. int color;
  30. {
  31. int ocolor;
  32.  
  33. ocolor =  Setcolor(0, -1);
  34. Setcolor(0, color);
  35. wait_a_jiffy(8);
  36. Setcolor(0, ocolor);
  37. }
  38.  
  39. set_acolor(color)
  40. register WORD color;
  41. {
  42. register struct aline *a = aline;
  43.  
  44. if (color & (1<<3) )
  45.     a->colbit3 = 1;
  46. else
  47.     a->colbit3 = 0;
  48. if (color & (1<<2) )
  49.     a->colbit2 = 1;
  50. else
  51.     a->colbit2 = 0;
  52. if (color & (1<<1) )
  53.     a->colbit1 = 1;
  54. else
  55.     a->colbit1 = 0;
  56. if (color & 1)
  57.     a->colbit0 = 1;
  58. else
  59.     a->colbit0 = 0;
  60. }
  61.  
  62. gblock(color, mode, x, y, width, height)
  63. WORD color, mode;
  64. WORD x, y, width, height;
  65. {
  66. register struct aline *a = aline;
  67.  
  68. set_acolor(color);
  69. a->wmode = mode;  
  70. a->patptr = solid;
  71. a->x1 = x;
  72. a->y1 = y;
  73. a->x2 = x+width-1;
  74. a->y2 = y+height-1;
  75. a->xmincl = a->ymincl = 0;
  76. a->xmaxcl = XMAX;
  77. a->ymaxcl = YMAX;
  78. acblock();
  79. }
  80.  
  81. colored_block(color, x, y, width, height)
  82. WORD color;
  83. WORD x, y, width, height;
  84. {
  85. gblock(color, REPLACE, x, y, width, height);
  86. }
  87.  
  88.  
  89. xor_block(color, x, y, width, height)
  90. WORD color;
  91. WORD x, y, width, height;
  92. {
  93. gblock(color, XOR, x, y, width, height);
  94. }
  95.  
  96. clear_screen()
  97. {
  98. stuff_words(cscreen, 0, 16000);
  99. }
  100.  
  101. show_piece(p, xoff, yoff, color)
  102. register unsigned WORD *p;
  103. int xoff, yoff, color;
  104. {
  105. struct bbblock b;
  106.  
  107. b.b_wd = 27;
  108. b.b_ht = 23;
  109. b.plane_ct = BITPLANES;
  110. b.op_tab[0] = 4;
  111. b.op_tab[1] = 4;
  112. b.op_tab[2] = 7;
  113. b.op_tab[3] = 7;
  114. b.fg_col = color;
  115. b.d_xmin = xoff;
  116. b.d_ymin = yoff;
  117. b.d_form = cscreen;
  118. b.s_xmin = b.s_ymin = 0;
  119. b.s_form = (WORD *)p;
  120. b.s_nxwd = 2;
  121. b.s_nxln = 4;
  122. b.s_nxpl = 0;
  123. b.d_nxpl = 2;
  124. b.d_nxwd = BITPLANES*2;
  125. b.d_nxln = 160;
  126. b.p_addr = NULL;
  127. ablit(&b);
  128. }
  129.  
  130. gtext(s, x, y, color)
  131. char *s;
  132. WORD x, y;
  133. WORD color;
  134. {
  135. vst_color(handle, gemctable[color]);
  136. vswr_mode(handle, 0);
  137. v_gtext(handle, x, y+7, s);
  138. }
  139.  
  140. italic_font()
  141. {
  142. vst_effects(handle, 4);
  143. }
  144.  
  145. unitalic_font()
  146. {
  147. vst_effects(handle, 0);
  148. }
  149.  
  150. small_font()
  151. {
  152. WORD ch_width, ch_height, cl_width, cl_height;
  153.  
  154. vst_height(handle, 4, &ch_width, &ch_height, &cl_width, &cl_height);
  155. }
  156.  
  157.  
  158. big_font()
  159. {
  160. WORD ch_width, ch_height, cl_width, cl_height;
  161.  
  162.  
  163. vst_height(handle, 12, &ch_width, &ch_height, &cl_width, &cl_height);
  164. }
  165.  
  166. normal_font()
  167. {
  168. WORD ch_width, ch_height, cl_width, cl_height;
  169.  
  170. vst_height(handle, 6, &ch_width, &ch_height, &cl_width, &cl_height);
  171. }
  172.  
  173.